Skip to main content
GET
/
reports
/
runs
/
data
[beta] Get custom report run data
curl --request GET \
  --url https://api.samsara.com/reports/runs/data \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "columns": [
      {
        "dataType": "string",
        "name": "Device Name",
        "unit": "kilometersPerHour"
      }
    ],
    "rows": [
      [
        "Est eos cum nemo dolores rem amet.",
        "Sit tempore ipsa.",
        "Recusandae libero sit qui officiis."
      ],
      [
        "Ut voluptatem eos perferendis.",
        "Inventore id quod veritatis enim ea.",
        "Dolor labore omnis ut adipisci.",
        "Deserunt beatae aliquam explicabo illo blanditiis mollitia."
      ]
    ],
    "status": "complete"
  },
  "pagination": {
    "endCursor": "MjkY",
    "hasNextPage": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://samsara-showcase.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

id
string
required

ID of the report run.

after
string

If specified, this should be the endCursor value from the previous page of results. When present, this request will return the next page of results that occur immediately after the previous page of results.

limit
integer
default:1024

Maximum number of rows to return.

Required range: 1 <= x <= 1024

Response

OK response.

data
object
required
pagination
object
required

Pagination parameters.